regexp.machine.matched (field)
9 uses
regexp (current package)
exec.go#L43: matched bool // whether a match was found
exec.go#L180: m.matched = false
exec.go#L203: if m.matched {
exec.go#L218: if !m.matched {
exec.go#L229: if len(m.matchcap) == 0 && m.matched {
exec.go#L242: return m.matched
exec.go#L268: if longest && m.matched && len(t.cap) > 0 && m.matchcap[0] < t.cap[0] {
exec.go#L279: if len(t.cap) > 0 && (!longest || !m.matched || m.matchcap[1] < pos) {
exec.go#L292: m.matched = true
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |